home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / bbsdoors / se210.zip / EVENT.DOC < prev    next >
Text File  |  1993-05-27  |  2KB  |  83 lines

  1.  
  2.                         STAR EMPIRE EVENT MANUAL
  3.                           Star Empire v. 2.10
  4.  
  5.                   Copyright (C) 1992 Antoine Le Huenen
  6.  
  7.  
  8. As of Star Empire v. 2.00, Star Empire no longer requires registration.  You
  9. are free to use Star Empire for as long as you wish, and you are not required
  10. to pay any fee to the author for the use of this software.  Please do not
  11. modify Star Empire in any ways, including thhe original archive.
  12.  
  13. Special thanks to Mark Brister for beta testing Star Empire and for the use
  14. of some of his ideas.
  15.  
  16.  
  17. Star Empire requires and event, to run its maintenance and update
  18. features.  Without it, the game will not advance properly, planets will
  19. not produce, etc.
  20.  
  21. This documentation works for TELEGARD BBS only.  If you are unsure of how
  22. to make an event in your BBS system, refer to your BBS's documentation for
  23. further information.
  24.  
  25. If your BBS does not have event capabilities, you must run EVENT.EXE once
  26. per day in your Star Empire directory in order for the game to keep
  27. balanced.
  28.  
  29. For Telegard Users, go into the event editor, create a new event, and make
  30. it look like this:
  31.  
  32. Event #2 of 3
  33.  
  34. !. Active     : Yes
  35. 1. Description: Star Empire Maintenance
  36. 2. Sched. type: DOS shell
  37. 3. Event data : STARVENT.BAT
  38. 4. Busy time  : 1 minutes
  39. 5. Exec. time : 3:30
  40. 6. Busy during: Yes
  41. 7. Duration   : 1
  42. 8. Days active: SMTWTFS
  43.  
  44. and add the following batch file to your main BBS directory.  Call it
  45. STARVENT.BAT:
  46.  
  47. echo off
  48. cd \bbs\star
  49. EVENT.EXE
  50. cd \bbs
  51.  
  52. If you are using TELEGARD without a front door, you will find that the event
  53. might execute two or three times.  As this is not wanted, you might want to
  54. add the SLEEP program included in this package to your batch file.  That will
  55. add a one minute delay after EVENT.EXE runs, so the minimum time telegard
  56. allocates will pass.  Change your batch file like this:
  57.  
  58. echo off
  59. cd \bbs\star
  60. EVENT.EXE
  61. SLEEP.EXE
  62. cd \bbs
  63.  
  64. The EVENT would run a lot faster if you had a ram drive, and would reduce
  65. the access on the hard disk.  To do that, simply change your batch file
  66. to the following:
  67.  
  68. echo off
  69. d:
  70. copy c:\bbs\star\event.exe
  71. copy c:\bbs\star\*.dat
  72. EVENT
  73. c:
  74. cd \bbs\star
  75. copy d:event.exe
  76. copy d:*.dat
  77.  
  78. Notice that D: is the ram drive, replace D: by the letter of your ram
  79. drive.
  80.  
  81. And that's about it!  Your Star Empire DOOR should now be ready to use!
  82.  
  83.